home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / network / usrpr103.zip / GETADDR.C < prev    next >
C/C++ Source or Header  |  1992-06-26  |  395b  |  19 lines

  1. #include <dos.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5.  
  6.  
  7. void GetHWAddr(char *s)
  8. {
  9.  
  10.     if( check_nwaddr( s ) ) return;    // first check for netware
  11.     if( check_wdaddr( s ) ) return; // then try western digital
  12.  
  13. //    This next line is dangerous. Use only if you know what the port is.
  14. //    if( check_3Caddr( port , s ) ) return;
  15.  
  16.     printf("Unable to find Card Address.\n");
  17.     exit(1);
  18. }
  19.